home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / list / RCS / List_Init.c,v < prev    next >
Text File  |  1990-11-27  |  2KB  |  113 lines

  1. head     1.3;
  2. branch   ;
  3. access   ;
  4. symbols  ;
  5. locks    ; strict;
  6. comment  @ * @;
  7.  
  8.  
  9. 1.3
  10. date     90.11.27.11.05.41;  author ouster;  state Exp;
  11. branches ;
  12. next     1.2;
  13.  
  14. 1.2
  15. date     90.09.11.14.25.07;  author kupfer;  state Exp;
  16. branches ;
  17. next     1.1;
  18.  
  19. 1.1
  20. date     88.06.20.09.27.25;  author ouster;  state Exp;
  21. branches ;
  22. next     ;
  23.  
  24.  
  25. desc
  26. @@
  27.  
  28.  
  29. 1.3
  30. log
  31. @Eliminated inclusion of <sys.h> (didn't work for user programs
  32. anyway), add explicit declaration for panic.
  33. @
  34. text
  35. @/* 
  36.  * List_Init.c --
  37.  *
  38.  *    Source code for the List_Init library procedure.
  39.  *
  40.  * Copyright 1988 Regents of the University of California
  41.  * Permission to use, copy, modify, and distribute this
  42.  * software and its documentation for any purpose and without
  43.  * fee is hereby granted, provided that the above copyright
  44.  * notice appear in all copies.  The University of California
  45.  * makes no representations about the suitability of this
  46.  * software for any purpose.  It is provided "as is" without
  47.  * express or implied warranty.
  48.  */
  49.  
  50. #ifndef lint
  51. static char rcsid[] = "$Header: /sprite/src/lib/c/list/RCS/List_Init.c,v 1.2 90/09/11 14:25:07 kupfer Exp Locker: ouster $ SPRITE (Berkeley)";
  52. #endif not lint
  53.  
  54. #include <stdio.h>
  55. #include "list.h"
  56.  
  57. extern void panic();
  58.  
  59. /*
  60.  * ----------------------------------------------------------------------------
  61.  *
  62.  * List_Init --
  63.  *
  64.  *    Initialize a header pointer to point to an empty list.  The List_Links
  65.  *    structure must already be allocated.
  66.  *
  67.  * Results:
  68.  *    None.
  69.  *
  70.  * Side effects:
  71.  *    The header's pointers are modified to point to itself.
  72.  *
  73.  * ----------------------------------------------------------------------------
  74.  */
  75. void
  76. List_Init(headerPtr)
  77.     register List_Links *headerPtr;  /* Pointer to a List_Links structure 
  78.                     to be header */
  79. {
  80.     if (headerPtr == (List_Links *) NIL || !headerPtr) {
  81.     panic("List_Init: invalid header pointer.\n");
  82.     }
  83.     headerPtr->nextPtr = headerPtr;
  84.     headerPtr->prevPtr = headerPtr;
  85. }
  86. @
  87.  
  88.  
  89. 1.2
  90. log
  91. @Lint.
  92. @
  93. text
  94. @d17 1
  95. a17 1
  96. static char rcsid[] = "$Header: /sprite/src/lib/c/list/RCS/List_Init.c,v 1.1 88/06/20 09:27:25 ouster Exp Locker: kupfer $ SPRITE (Berkeley)";
  97. a20 1
  98. #include <sys.h>
  99. d23 1
  100. @
  101.  
  102.  
  103. 1.1
  104. log
  105. @Initial revision
  106. @
  107. text
  108. @d17 1
  109. a17 1
  110. static char rcsid[] = "$Header: proto.c,v 1.2 88/03/11 08:39:08 ouster Exp $ SPRITE (Berkeley)";
  111. d21 1
  112. @
  113.